home *** CD-ROM | disk | FTP | other *** search
/ PD ROM 1 / PD ROM Volume I - Macintosh Software from BMUG (1988).iso / Electronic Messages / Delphi Digests / Delphi Vol. 3 / Delphi 3.35 < prev    next >
Encoding:
Text File  |  1988-04-08  |  25.1 KB  |  704 lines  |  [TEXT/ttxt]

  1. 27-Jul-87 11:47:37-PDT,26400;000000000001
  2. Date: Mon 27 Jul 87 10:56:46-EDT
  3. From: Jeff Shulman <SHULMAN@SDR>
  4. Subject: Delphi Mac Digest V3 #35
  5.  
  6. Delphi Mac Digest     Friday, July 24, 1987          Volume 3 : Issue 35
  7.  
  8. Today's Topics:
  9.      Fortran 77 + 68881 for the Mac II (3 messages)
  10.      RE: Using assembly language with MicroSoft FORTRAN
  11.      RE: Do the PostScript strech... (3 messages)
  12.      re: Control Panel vs. Chooser
  13.      Selecting print quality (3 messages)
  14.      SE video problems
  15.      Re: Re: Control Panel vs. Chooser
  16.      Re: Debugging frozen mouse problem (2 messages)
  17.      Lisa (what's that?) hard disks
  18.      RE: Mac II Beep SND
  19.      RE: Region structure? (3 messages)
  20.      synching to vidoo blanking (2 messages)
  21.      Deactivating statictext (4 messages)
  22.      Looking for an FKEY...
  23.      Mac II w/multiple video cards
  24.      color picker (2 messages)
  25.      PageMaker 2.0 "features" (2 messages)
  26.      SoundWave
  27.      NEW Bernoulli drives
  28.      RE: equation composers
  29.      re:  Arrow keys and collapsing selection
  30.      edititem disable (2 messages)
  31.      cdevs
  32.  
  33. ----------------------------------------------------------------------
  34.  
  35. From: DWOOD
  36. Subject: Fortran 77 + 68881 for the Mac II
  37. Date: 14-JUL 20:48 Programming
  38.  
  39. Does anyone have any info on FORTRAN77 that supports the co-processor
  40. for the Mac II.  I can't find the address for Absoft anywhere in my
  41. office, so if you have it handy could you leave it here?  Or if you know
  42. the latest dope on that please let me know.  I heard that they are going
  43. to market it themselves -- the thought MS was not pushing it enough. I
  44. have seen some other F77 compilers advertized -- are there any that you
  45. would recommend?
  46.  
  47. Thanks in advance for the info ---                    Doug
  48.  
  49. ------------------------------
  50.  
  51. From: YMUG
  52. Subject: RE: Fortran 77 + 68881 for the Mac II (Re: Msg 21241)
  53. Date: 14-JUL 21:19 Programming
  54.  
  55. Absoft,4268 N.Woodward,Royal Oak,MI,48072,Tel.(313)549-7111. Don't ask.
  56. ;-)
  57.  
  58. ------------------------------
  59.  
  60. From: DWOOD
  61. Subject: RE: Fortran 77 + 68881 for the Mac II (Re: Msg 21242)
  62. Date: 18-JUL 20:38 Programming
  63.  
  64. I also called the tech support line in Florida. They said that version
  65. 2.3 in in the second of weeks of Beta testing and no big problems had
  66. come up.  WHen they ship they will have a 68881 option in the compiler.
  67. Price: 495 list  Less 100 if you have MS FORTRAN or MacFORTRAN and want
  68. to upgrade to 2.3 Absofts Fortran will compile on the Mac II, by the
  69. way, if you have the latest toolbx.sub and f77.rl run-time library.  It
  70. does not take advantage of the 68881, however. V2.3 is supposed to do
  71. that. BTW: look for ver. 3 of Dan Kampmeier's wondeful McFace subroutine
  72. that works on the Mac II and has many nice NEW features. -Doug
  73.  
  74. ------------------------------
  75.  
  76. From: MALOY
  77. Subject: RE: Using assembly language with MicroSoft FORTRAN
  78. Date: 15-JUL 11:01 Network Digests
  79.  
  80. SUBJECT: Using assembly language with MicroSoft FORTRAN
  81.  
  82.   The MS FORTRAN linker is not REL-file compatible.  The Linker expects
  83. SUB-files to have DATA forks containing executable code starting from
  84. the beginning of the file, and MDS REL-files do not fit this
  85. description. However, the MDS linker can be used to convert MDS
  86. REL-files to MS FORTRAN SUB-files.
  87.   As an example, suppose you wanted to create the DATE.SUB file from the
  88. DATE.ASM file provided.  First, modify DATE.ASM to be MDS Assembler
  89. compatible by changing the asterisk comment characters to semi-colons.
  90. Then MDS Assemble the file to create a DATE.REL file.   Now, we're ready
  91. to have the object code "linked to a data fork."  Create a file called
  92. DATE.LINK containing the following:
  93.  
  94.  /DATA
  95.  /TYPE '    ' '    '
  96.  DATE.REL
  97.  /OUTPUT DATE.SUB
  98.  $
  99.  
  100. MDS LINK with this file as input and you will create a SUB-file which
  101. can be dynamically linked at run-time or linked to a main program using
  102. the MS FORTRAN linker.
  103.                                                      Bill Maloy
  104.                                                      NSTL, MS
  105.                                                      (601)688-5572
  106.  
  107. ------------------------------
  108.  
  109. From: DDUNHAM
  110. Subject: RE: Do the PostScript strech... (Re: Msg 21206)
  111. Date: 15-JUL 03:08 Business Mac
  112.  
  113. Do the stretching after pasting the object into a word processor or page
  114. layout program.
  115.  
  116. ------------------------------
  117.  
  118. From: MACINTOUCH
  119. Subject: RE: Do the PostScript strech... (Re: Msg 21266)
  120. Date: 15-JUL 20:34 Business Mac
  121.  
  122. I used to do this with MacDraw and PageMaker. Create the text in
  123. MacDraw, save it in an Acta outline, and paste it into PageMaker, where
  124. you can stretch the object horizontally or vertically.  MacWEEK uses the
  125. technique for their headlines.
  126.  
  127. Ric
  128.  
  129. ------------------------------
  130.  
  131. From: NATURAL
  132. Subject: RE: Do the PostScript strech... (Re: Msg 21272)
  133. Date: 15-JUL 23:38 Business Mac
  134.  
  135. but then when I paste back into SuperPaint (even using Acta as a
  136. middle-DA), it still reverts.  I guess I'll leave it in PageMaker.
  137.  
  138. ------------------------------
  139.  
  140. From: DDUNHAM
  141. Subject: re: Control Panel vs. Chooser (Re: Msg 21214)
  142. Date: 15-JUL 03:08 Network Digests
  143.  
  144.  >From: wrs@k.cs.cmu.edu (Walter Smith)
  145.  >Subject: Control Panel vs. Chooser
  146.  
  147. My guess is that Chooser chooses among files (printer drivers,
  148. AppleShare driver), while Control Panel doesn't normally.  Note that
  149. Startup Device deals with local hardware, the Chooser more with remote
  150. devices.
  151.  
  152.  >From: jww@sdcsvax.UCSD.EDU (Joel West)
  153.  >Subject: Re: Control Panel vs. Chooser
  154.  
  155. I have 30 DAs under my Apple menu (thanks to the forthcoming Suitcase
  156. from Steve Brecher's Software Supply), and use most of them
  157. occasionally.  I do think both are useful and different.
  158.  
  159. ------------------------------
  160.  
  161. From: SOCCERKING
  162. Subject: Selecting print quality
  163. Date: 15-JUL 14:14 Programming Techniques
  164.  
  165. How does one go about selecting the print quality from within an
  166. application, without going through the dialogs. Like the es one go about
  167. selecting the print quality manually without having the user going threw
  168. the dialog, like the {PrintOptions} variable in MPW.
  169.  
  170. ------------------------------
  171.  
  172. From: DDUNHAM
  173. Subject: RE: Selecting print quality (Re: Msg 1876)
  174. Date: 16-JUL 22:28 Programming Techniques
  175.  
  176. If you do it, you risk being incompatible (isn't MPW burned by that one
  177. with the latest drivers?).  If you just want to be draft, then you can
  178. use low level printing (which actually looks much nicer than draft on an
  179. ImageWriter), though I've heard rumours that Apple will stop supporting
  180. low level printing in the future.
  181.  
  182. ------------------------------
  183.  
  184. From: DWB
  185. Subject: RE: Selecting print quality (Re: Msg 1876)
  186. Date: 19-JUL 22:35 Programming Techniques
  187.  
  188. One way is to have a print record which get's read from a resource.  If
  189. the resource doesn't exist, you can put up the dialog and have the user
  190. select whatever options you think you need.  Then save the resource.
  191. Whenever you need to print load the resource (or create it as above) and
  192. validate it with PrValidate. That way you are guaranteed to be
  193. compatible with whatever's going on in the current print driver and at
  194. the same time the user is only required to specify o[ptions a minimum of
  195. times.  Presumably you can even do the selection before you ship the
  196. stuff so they will probably never see it needing to be done.
  197.  
  198. That cryptic enough for you...
  199.  
  200. David
  201.  
  202. ------------------------------
  203.  
  204. From: MACINTOUCH
  205. Subject: SE video problems
  206. Date: 15-JUL 21:21 Bugs & Features
  207.  
  208. I think I've stumbled on one of the things that causes video problems
  209. with the Mac SE. I've been opening the SE up a lot, testing accelerators
  210. and hard disks, and noticed that the red wire from the flyback
  211. transformer was touching the white ground wire. I separated them a
  212. little, and the real-time- rubber-screen effect on the left side seemed
  213. to get better - now it expands and contracts less. (You might have to
  214. see it to understand).  Tweaking the brightness controls on the analog
  215. board didn't seem to help anything much, not even the barrel distortion.
  216.  
  217. Ric
  218.  
  219. ------------------------------
  220.  
  221. From: BRECHER
  222. Subject: Re: Re: Control Panel vs. Chooser
  223. Date: 16-JUL 02:35 MUGS Online
  224.  
  225. To: mo@well.UUCP (Maurice Weitman) Subject: Re: Re: Control Panel vs.
  226. Chooser
  227.  
  228. > The only real objection I have to Chooser being separate is the DA slot it
  229. > uses, and that is something that will no longer be a problem, RSN, right
  230. > Steve?
  231.  
  232. Right.  The revolution starts in booth 1321 at MacWorld Expo, Boston.
  233.  
  234. ------------------------------
  235.  
  236. From: BRECHER
  237. Subject: Re: Debugging frozen mouse problem
  238. Date: 16-JUL 02:35 MUGS Online
  239.  
  240. To: smethers@psu-cs.UUCP (Paul Smethers) Subject: Re: Debugging frozen
  241. mouse problem
  242.  
  243. > I'm having problems finding a bug the freezes the mouse.  Has anyone found a
  244. > good debugging method for finding these bugs (i.e. is there some way with
  245. > some tool to trap the memory access to the bogus address)?
  246.  
  247. Find a Mac II and run your code on it; the offending code will likely
  248. cause an immediate bus error trap into the debugger.
  249.  
  250. I know of no other debugging technique for this problem.
  251.  
  252. ------------------------------
  253.  
  254. From: DDUNHAM
  255. Subject: RE: Re: Debugging frozen mouse problem (Re: Msg 21281)
  256. Date: 17-JUL 06:45 MUGS Online
  257.  
  258. I've had a frozen mouse on my II; I suspect it happened because
  259. interrupts got disabled (couldn't enter TMON either).
  260.  
  261. ------------------------------
  262.  
  263. From: HALL
  264. Subject: Lisa (what's that?) hard disks
  265. Date: 16-JUL 17:04 Hardware & Peripherals
  266.  
  267. Is there any way to use a Lisa internal hard disk on a Mac?  What kind
  268. of interface does the Lisa use?
  269.  
  270. Thanks, Brian
  271.  
  272. ------------------------------
  273.  
  274. From: NATURAL
  275. Subject: RE: Mac II Beep SND (Re: Msg 21312)
  276. Date: 17-JUL 15:41 Macintosh II
  277.  
  278. > grayson@cartan.Berkeley.EDU (Matthew Grayson)
  279. > Subject: Re: Mac ][ First Impressions...
  280. > Date: 23 Jun 87 15:52:05 GMT
  281. > Organization: Math Dept. UCB
  282.  
  283. Matt, thanks for that great Mac II SND tip.  One quick question
  284. though... I would like to modify SoundWave to save SND resources as
  285. yours does. Can you post the patch or send it my way?
  286.  
  287. Thanks.
  288.  
  289. Joshua Wachs Natural Intelligence Consulting
  290.  
  291. Delphi: NATURAL MCI   : NATURAL
  292.  
  293. ------------------------------
  294.  
  295. From: SOCCERKING
  296. Subject: RE: Region structure? (Re: Msg 1875)
  297. Date: 16-JUL 18:50 Developers' Corner
  298.  
  299. The structure of a region is given in the book "Hidden Powers of The
  300. Macintosh" by Christopher L. Morgan. It is put out by The Wait Group.
  301. Instead of making you buy it I will be a nice guy and give it a shot.
  302.  
  303. The data that defines the shape of a nonrectangular region is a list of
  304. integers that makes up a sequance of fields, each specifies the corner
  305. points
  306.  of the shape that lie along one horizantal line in QuickDraw's
  307. coordiante system. Each field begins with a y coordinate that uniquely
  308. specifies the height of the horizontal line, followed by a sequence of x
  309. coordinates that specify the horizontal positions of its corner points.
  310. Each field terminates with an integer whose value is 32767, and the
  311. entire list terminates with an extra 32767. The field are given in
  312. increasing order of theri y coordinates, and the x coordinates within
  313. each field are also given in increasing order.
  314.  
  315.  Now lets try an example!
  316.  visualize this... A L shaped figure with corner points
  317.  (100,100) - (200,100)
  318.  (200,200) - (300,200)
  319.  (100,300) - (300,300)
  320.  ok the region in memory would look like this
  321.  100, 100, 200, 32767, 200, 200, 300, 32767, 300, 100, 300, 32767, 32767
  322.  put that in a understandable format and you get
  323.  100, 100, 200, 32767
  324.  200, 200, 300, 32767
  325.  300, 100, 300, 32767
  326.  32767
  327.  Gee thanks Mr. Morgan!
  328.  Now maybe some one can help me with selecting the print quality?
  329.  Brent.
  330.  
  331. ------------------------------
  332.  
  333. From: HPP
  334. Subject: RE: Region structure? (Re: Msg 1878)
  335. Date: 19-JUL 02:03 Developers' Corner
  336.  
  337. I also found a ref to quichdraw regions on another net( all right there
  338. are others..not as good of course) by DADLER where he mentioned that
  339. Apple had patented their region structure in the UK and maybe USA..and
  340. described as a series of short words: 1)size   2)rgnBBox 3) a series of
  341. lists Y1,X1,X2..0x7fff Y2,X22,X23,X24..0x7fff .. 0x7ffff as a fence as
  342. end of Y.lists. Each Y,X iverts all points to the right and below as to
  343. beinog IN or OUT of the region. Im interested to know whether a hardware
  344. can enhance graphic ops on macs...Phil Peterson
  345.  
  346. ------------------------------
  347.  
  348. From: PEABO
  349. Subject: RE: Region structure? (Re: Msg 1888)
  350. Date: 19-JUL 16:24 Developers' Corner
  351.  
  352. Hmmm ... it would be interesting to know what claims Apple patented.
  353. Patents are never issued on an entire thing (pardon the imprecise
  354. wording here). Instead, the patent lists a number of claims, or aspects
  355. of the process, which are subject to the patent.
  356.  
  357. Region operations can be extremely slow.  Tony Nelson's Apple-shaped
  358. windows demonstrate this nicely (I think when you move them).  What I'd
  359. suggest you do is analyze region operations for a couple of properties:
  360.  
  361.   1.  CPU time compared to the size of the region (this would give you
  362.       an idea of how much overhead is inherent to the amount of memory
  363.       taken ... no matter how fast the hardware is, a region with more
  364.       corners will take longer to process)
  365.   2.  Use of the stack (I don't know if region operations are
  366. recursive).
  367.   3.  Generality.  QuickDraw implements a subset of graphic operators,
  368.       and you might want to have more operators available.
  369.   4.  Pathology.  It should be possible to construct some regions that
  370.       cause blowups.  This was definitely the case with the 64K ROMs
  371.       because some fixups were made in the 128K ROMs.
  372.  
  373. Once you get through this, you'll probably know more about regions than
  374. anyone except Bill Atkinson. :-)
  375.  
  376. peter
  377.  
  378. ------------------------------
  379.  
  380. From: JIMH
  381. Subject: synching to vidoo blanking
  382. Date: 18-JUL 02:03 Programming
  383.  
  384. Paul, i dont think i understand how you synch to the vido blanking for
  385. the mac II?  you seem to be installing your task in a vbl queue for the
  386. card. does that mean there is a seperate vbl queue for each card so it
  387. does synch with the card video blanking. I got a neat little hack in
  388. progress to use multiple screen aninimation on the mac II. works great i
  389. can have up to 4 screens now (8 with expansion) and dont have to violate
  390. any of the IM rules and it will work on any video card that follows
  391. apple video dr iver specs :-)  i am finding some bugs in the video
  392. driver though (i belive) which i am trying to work out with apple tech
  393. support on link.  anyway when its fully functional will send you code if
  394. interested.  might be interesting to use it on globe instead
  395.  of blitting bitmaps to screen.  best jim
  396.  
  397. ------------------------------
  398.  
  399. From: LOGICHACK
  400. Subject: RE: synching to vidoo blanking (Re: Msg 21326)
  401. Date: 18-JUL 02:45 Programming
  402.  
  403. Yeah, since each video card can have a totally different video blanking
  404. time, Apple added at VBL task queue to each card.  Its pretty sensible.
  405. If you check out the VBL.a file in Globe, you'll see that all my task
  406. does is increment a counter on every vbl.  The main Globe code merely
  407. waits for this counter to increment before drawing, if the Sync to VBL
  408. option is chosen.  Let me know if you need more clarification.
  409.  
  410. Please send your video stuff.  I'm always on the lookout for neat hacks!
  411. Gee, with expanded video, can't you do about 15 or more pages or mono
  412. stuff?  Or do the page bounds have to lie at certain boundaries?
  413.  
  414. Feel free to hack up Globe as much as you like.  Please keep me up on
  415. how you're improving it.  I was just thinking the other day and realized
  416. that I spend a sigificant amount of time just just doing normal event
  417. loop stuff.  You'll see how fast quickdraw really is if you move the
  418. Globe window to the lower right of the scree, align the window, and then
  419. pull down the About... box.  The About... box has a really small event
  420. loop and the globe spins much faster.
  421.  
  422. Best,
  423.  
  424. Paul :)
  425.  
  426. ------------------------------
  427.  
  428. From: RABBIT
  429. Subject: Deactivating statictext
  430. Date: 17-JUL 23:38 Programming Techniques
  431.  
  432.    I am having trouble finding a (simple solution) to a small problem. I
  433. am writing an application that has a dialog box which contains
  434. StaticText that must be deactivated (dimmed).  I figure i could use a
  435. pattern transfer but that seems to be to much (since the mac usually has
  436. nice little routines for such things). Is there any simpler technique or
  437. am I stuck with the pattern transfer. In this dialog there are 20 items
  438. which must be activated and deactived so that's why I'd rather not do a
  439. pattern trans.
  440.                              Scott
  441.  
  442. ------------------------------
  443.  
  444. From: JIMH
  445. Subject: RE: Deactivating statictext (Re: Msg 1880)
  446. Date: 18-JUL 02:07 Programming Techniques
  447.  
  448. Scott, hi i couldnt find any good way.  i finally settled for HideDItem
  449. to hide the active text items.  if you want to be compatable with old
  450. old roms ;-)  you can move the dialog item off the screen.  best jim ps
  451. using patterns are ok unless you need to do an update then old pattern
  452. shows up and tab still goes there.
  453.  
  454. ------------------------------
  455.  
  456. From: RABBIT
  457. Subject: RE: Deactivating statictext (Re: Msg 1881)
  458. Date: 19-JUL 23:03 Programming Techniques
  459.  
  460. Jim,
  461.      Thanks for the response.  At one time I tried the HideDItem type of
  462. solution... But it just didn't look right.  The dialog looked like it
  463. had gaping holes in it.  Another problem I have is trying to make
  464. editext items look deactivated (at least not respond to mouse clicks and
  465. key strokes) but I'll have to save that till I get the deactivated text
  466. out of the way !  I guess I might have to do it the hard way (in the old
  467. days using the toolbox routines would have been considered to easy...
  468. funny how things change)...
  469.                                 Scott
  470.  
  471. ------------------------------
  472.  
  473. From: RABBIT
  474. Subject: RE: Deactivating statictext (Re: Msg 1882)
  475. Date: 19-JUL 23:13 Programming Techniques
  476.  
  477.      I appreciate that response!  I should have said more about my
  478. application so you didn't have to write all of that for me.  The items
  479. that will be deactivated will be selected by the user.  I know that IM
  480. doesn't like this kind of stuff but I am going to have the user click on
  481. the statictext to enable and disable a database field (which contains
  482. edittext below each statictext item). This was the best solution to a
  483. very crowded screen. I will set up a loop to keep track of deactivated
  484. items in the database file so they can be deactivated upon creation of
  485. the dialog.  I just can't beleive that apple didn't provide a simpler
  486. way (I guess I'm asking for to much now).  I'm doing the APP in assembly
  487. language (don't ask, I'm just a nut).
  488.       Any ideas on how to keep an edittext item in a dialog to keep from
  489. responding to mouse and keyboard events since they all share the same
  490. text record?
  491.                                         Thanks...Scott
  492.  
  493. ------------------------------
  494.  
  495. From: M_DELUGG
  496. Subject: Looking for an FKEY...
  497. Date: 18-JUL 08:17 Bugs & Features
  498.  
  499. Hi gang,
  500.  
  501. Camera DA gives me trouble now and then (maybe I have an older one?)...
  502. But I was *really* wondering if anybody had done this number in an fkey
  503. flavor? I'm probably having trouble with CAMERA cuz I'm running EZ-Menus
  504. and just bout anything else I like <smile>, including all kinds of fkeys
  505. and inits (what the heck can you do on a "PC" that even approaches the
  506. 'mad-cap' computing we do on our MACs?!?)
  507.  
  508. OK, I'm biased, anyhow... Since the 128k roms WON'T ALLOW me to snapshot
  509. a menu, and I'd rather keep my DA & EZmenu status quo, is there a fix?
  510.  
  511.                               - Mikey
  512.  
  513. ------------------------------
  514.  
  515. From: DDUNHAM
  516. Subject: Mac II w/multiple video cards
  517. Date: 19-JUL 03:53 Macintosh II
  518.  
  519. If you're using a Mac II with multiple video cards, be sure to use
  520. multiple monitors, too.  Otherwise you can drag the mouse pointer off
  521. into never-never land.  Apparently Apple's cards don't know if a monitor
  522. is actually attached.
  523.  
  524. ------------------------------
  525.  
  526. From: METASOFTWARE
  527. Subject: color picker
  528. Date: 18-JUL 19:17 Tools for Developers
  529.  
  530. anyone seen the new color picker for the MAC II? it didn't seem to be be
  531. in MPW. what's entailed?
  532.  
  533. ------------------------------
  534.  
  535. From: DDUNHAM
  536. Subject: RE: color picker (Re: Msg 1885)
  537. Date: 19-JUL 03:54 Tools for Developers
  538.  
  539. I used get_color(where,prompt,inColor,outColor) Point where; char
  540. *prompt; RGBColor *inColor, *outColor;
  541. {
  542.    asm {
  543.         clr.w   -(SP)
  544.         move.l  where,-(SP)
  545.         move.l  inColor,-(SP)
  546.         move.l  outColor,-(SP)
  547.         move.w  #9,-(SP)
  548.         dc.w    0xa82e  ; _Pack12
  549.         move.w  (SP)+,D0
  550.         }
  551. }
  552.  
  553. from LightspeedC.  Pascal programmers might be able to use some sort of
  554. inline thingy for the move.w and the _Pack12.
  555.  
  556. ------------------------------
  557.  
  558. From: DDUNHAM
  559. Subject: PageMaker 2.0 "features"
  560. Date: 22-JUL 21:20 Bugs & Features
  561.  
  562. Some bugs in PageMaker 2.0:
  563.  
  564. PageMaker doesn't like an empty Clipboard.  Open a desk accessory that
  565. supports text selection and copying (Acta, Calendar, miniWRITER, Phone
  566. Pad, etc.), and while the cursor is a flashing insertion point (i.e. no
  567. text selected), choose Copy.  Now click the PageMaker window back to the
  568. front and enjoy the "Cannot paste from Clipboard Error -102" dialog.
  569.  
  570. PageMaker doesn't draw colorized menus properly on a Macintosh II.
  571.  
  572. If you select a picture in PageMaker and copy it to the Clipboard, you
  573. can't paste it into MacWrite (you _can_ paste it into the Scrapbook).
  574. PageMaker is writing a defective Clipboard.
  575.  
  576.  David Dunham     "Whenever you see a sign 'No Exit,' it means
  577.  Maitreya Design   there is an exit."
  578.  
  579. ------------------------------
  580.  
  581. From: MADMACS
  582. Subject: RE: PageMaker 2.0 "features" (Re: Msg 21425)
  583. Date: 22-JUL 21:46 Bugs & Features
  584.  
  585. Some more PageMaker 2.0 bugs/problems: It doesn't print shadowed type
  586. correctly.
  587.  
  588. It also won't print legal size paper correctly to the LaserWriter Plus
  589. (and I assume LaserWriter also) if you manually feed the legal size
  590. paper in (i.e., not
  591.  
  592. using a legal size paper tray). And the HUGE file sizes, but Aldus
  593. considers that a feature I guess :-) I've also had some problems going
  594. from IBM-> Mac via TOPS. Bitmaps can get scrambled, and in one case all
  595. of the Zapf Dingbats characters were lost in a transfer. Don't know if
  596. this is Aldus or TOPS: Aldus had never heard of the problem (they
  597. claimed).
  598.  
  599. Robert Hammen Madison Macintosh Users Group
  600.  
  601. ------------------------------
  602.  
  603. From: MADMACS
  604. Subject: SoundWave
  605. Date: 23-JUL 01:12 Macintosh II
  606.  
  607.  
  608. I just got the update to SoundCap (called SoundWave) from Impulse
  609. (formerly MacNifty). I've played with it for about 5 minutes and have
  610. already crashed the machine twice (although I'm only using a 512e). It's
  611. "programmability" is in the form of swci resources you can create - they
  612. provide Lightspeed Pascal source for a sample swci resource, but claim
  613. you can use most any compiler (i.e. one that supports FKEYs) to produce
  614. these resources. I'll report more info when I have it. Robert Hammen
  615. Madison Macintosh Users Group
  616.  
  617. ------------------------------
  618.  
  619. From: JIMWEINRICH
  620. Subject: NEW Bernoulli drives
  621. Date: 24-JUL 02:06 Hardware & Peripherals
  622.  
  623. So, guys, does anybody have any experience with the NEW Bernoulli-style
  624. drives for the Mac?  I've gotten answers about the Iomega (original)
  625. Bernoulli box, but at least 3 other companies seem to be doing them now,
  626. judging from ads in the Mac magazines. Thanks for your help! --Jim
  627. Weinrich
  628.  
  629. ------------------------------
  630.  
  631. From: DDUNHAM
  632. Subject: RE: equation composers
  633. Date: 24-JUL 05:19 Network Digests
  634.  
  635. A local prof who has looked at 4 different equation composers says that
  636. Expressionist is the "least bad" of them all.  That means, he likes it,
  637. but (like most programs) it's got some flaws.  It's $55.
  638.  
  639. (I could have told you this quicker if you'd left the note on Delphi!)
  640.  
  641. ------------------------------
  642.  
  643. From: DDUNHAM
  644. Subject: re:  Arrow keys and collapsing selection (Re: Msg 21457)
  645. Date: 24-JUL 05:19 Network Digests
  646.  
  647.  >From: brian@ut-sally.UUCP (Brian H. Powell)
  648.  >Subject: Arrow keys and collapsing selections
  649.  
  650. I like handling Up or Down as in TextEdit.  I think LsC works that way,
  651. and it's handy if you've found text, and want to insert something at the
  652. beginning or end.  An actual move would require the cursor to be moved
  653. back.  Actually, Left and Right might be handled that way, too.  So go
  654. with solution 2.
  655.  
  656. ------------------------------
  657.  
  658. From: RABBIT
  659. Subject: edititem disable
  660. Date: 23-JUL 23:32 Programming Techniques
  661.  
  662.     The SetDItem worked very well!!  I forgot to read the section in the
  663. SetDItem explanation that said it didn't redraw the control.  If the
  664. first item in the EditText list is disabled though I have to put a
  665. special check in or else
  666. the EditText item will still be active after an update event.
  667. I think I am going to write two routines DimStatText and DisEdItem
  668. for any future programs, it looks like they could be quite usefull.
  669. I did find one interesting thing.  I did a GetPort and GetPenState
  670. and then a SetPort and SetPenState to save the current port and PenState
  671. (I originally thought that the penstate was part of the portrec).
  672. However, unless I restore the penstate before the port _evidently_  the
  673. penstate isn't updated properly.
  674.                                          Scott
  675.  
  676. ------------------------------
  677.  
  678. From: PEABO
  679. Subject: RE: edititem disable (Re: Msg 1909)
  680. Date: 24-JUL 01:48 Programming Techniques
  681.  
  682. If you restore the port before the penstate, then what you are doing is
  683. setting the pen state of the port you saved rather than the port whose
  684. pen state you altered!
  685.  
  686. peter
  687.  
  688. ------------------------------
  689.  
  690. From: DDUNHAM
  691. Subject: cdevs
  692. Date: 24-JUL 00:24 Programming Techniques
  693.  
  694. Are there any tricks to writing a cdev?  When I switch from mine to
  695. General, General's font turns into Chicago 12.  I'm using Geneva 9 in my
  696. own cdev, so I'm confused.
  697.  
  698.  
  699. ------------------------------
  700.  
  701. End of Delphi Mac Digest
  702. ************************
  703. -------
  704.